home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NOVA - For the NeXT Workstation
/
NOVA - For the NeXT Workstation.iso
/
SourceCode
/
Tutorial
/
Cookbook
/
09.form
/
MyObject.m
< prev
next >
Wrap
Text File
|
1992-12-19
|
320b
|
25 lines
/* Generated by Interface Builder */
#import "MyObject.h"
#import <appkit/Form.h>
@implementation MyObject
- setMyText:anObject
{
myText = anObject;
return self;
}
- printText:sender
{
const char *strptr;
strptr = [myText stringValue];
printf("String = %s\n", strptr);
return self;
}
@end